home *** CD-ROM | disk | FTP | other *** search
/ PC Open 93 / PC Open 93 CD 2.bin / PDF / webdeveloper / lezione_1 / whilewend.asp < prev   
Encoding:
Text File  |  2003-08-25  |  298 b   |  20 lines

  1. <%@ language="vbscript" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  3. <html>
  4. <head><title>For...Next</title></head>
  5. <body>
  6.  
  7. <%
  8. Dim y,x
  9.  
  10. i = 0
  11.  
  12. while i <= 5
  13.     i = i + 1
  14.     response.write i & "<br>"
  15. wend
  16. %>
  17.  
  18. </body>
  19. </html>
  20.